From 9c98027998b7d6325871fba012cad6c5836ed20c Mon Sep 17 00:00:00 2001 From: oliskoli Date: Wed, 26 Jul 2006 20:05:50 +0000 Subject: [PATCH] Add missing semicolon at the end of a statement. --- gbfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gbfile.c b/gbfile.c index 147a4d4de..bbca7a24e 100644 --- a/gbfile.c +++ b/gbfile.c @@ -549,7 +549,7 @@ gbfputflt(const float f, gbfile *file) int gbfputcstr(const char *s, gbfile *file) { - return gbfwrite(s, 1, strlen(s) + 1, file) + return gbfwrite(s, 1, strlen(s) + 1, file); } int -- 2.30.2